home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue42 / comcorn / DAXDoc / Main.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1999-01-11  |  374 b   |  22 lines

  1. unit Main;
  2.  
  3. interface
  4.  
  5. uses
  6.   ComObj, ActiveX, AxDocs, DAXDoc_TLB;
  7.  
  8. type
  9.   TDelphiAxDoc = class(TActiveXDocument, IDelphiAxDoc)
  10.   protected
  11.     { Protected declarations }
  12.   end;
  13.  
  14. implementation
  15.  
  16. uses ComServ, StdCtrls;
  17.  
  18. initialization
  19.   TActiveXDocumentFactory.Create(ComServer, TDelphiAxDoc, TMemo,
  20.     Class_DelphiAxDoc, 0, 131473, tmApartment);
  21. end.
  22.